From 5b15ea4d8977ef9255d07f810cc88563aaa77e6a Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 28 Jul 2014 13:57:57 -0700 Subject: [PATCH] Deny all warnings when building cargo This helps keep the build a little cleaner and any breakage that happens due to rust changing will likely be mitigated by nightlies. --- src/cargo/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cargo/lib.rs b/src/cargo/lib.rs index b90ebe6e1..50925ae7c 100644 --- a/src/cargo/lib.rs +++ b/src/cargo/lib.rs @@ -3,6 +3,7 @@ #![feature(macro_rules, phase)] #![feature(default_type_params)] +#![deny(warnings)] extern crate debug; extern crate term; -- 2.30.2